Menu
Your Cart

Battery for HP 4410S Laptop

Battery for HP 4410S Laptop
Battery for HP 4410S Laptop
  • Price: TK 1,900/-
  • Stock: In Stock
  • Model: 4410S
TK 1,900/-
Ex Tax: TK 1,900/-

Key Features

    • Brand: For HP
    • Model:HP 4410S
    • Battery Type: Lithium-Ion
    • Voltage: 10.8V
    • Battery Capacity:44Wh 4000mAh
    • warranty:6 Months
Specification
General Feature
BrandFor HP
ModelHP 4410S
Part NoHSTNN-DB90, HSTNN-XB90, HSTNN-OB90, 513128-251, 513128-361, 535806-001, NZ374AA, HSTNN-I60C-4, HSTNN-I61C-4, ZP06047, ZP06, NBP6A158B1, NBP6A158, 572032-001, 536418-001, 513128-321, 513128-261, 513128-251
Power
Battery TypePremium Lithium-Ion
Battery Capacity44Wh 4000mAh
Battery Cells6 Cells
Physical Attributes
ColorBlack
Compatible WithHP ProBook 4410S Series Notebook PC HP ProBook 4411S Series Notebook PC HP ProBook 4415S Series Notebook PC HP ProBook 4416S Series Notebook PC
Warranty Information
Warranty6 Months
Description

Battery for HP 4410S Laptop – Premium Battery at Dear IT Solution

Ensure your HP ProBook 4410S Series laptop runs efficiently with this high-quality, premium lithium-ion battery. Ideal for extended use, this battery provides reliable power for your professional and personal needs.

Key Features:

Battery Type: Premium Lithium-Ion
Capacity: 44Wh 4000mAh
Voltage: 10.8V
Cells: 6 Cells
Product Part Numbers: HSTNN-DB90, HSTNN-XB90, HSTNN-OB90, 513128-251, 513128-361, 535806-001, NZ374AA, HSTNN-I60C-4, HSTNN-I61C-4, ZP06047, ZP06, NBP6A158B1, NBP6A158, 572032-001, 536418-001, 513128-321, 513128-261, 513128-251
Product Condition: Brand New

Compatible With:

HP ProBook 4410S Series Notebook PC
HP ProBook 4411S Series Notebook PC
HP ProBook 4415S Series Notebook PC
HP ProBook 4416S Series Notebook PC

Why Choose Dear IT Solution?

Premium Quality: High-performance lithium-ion battery for dependable use.
Best Price in Bangladesh: Competitive pricing ensures you get the best value.
Upgrade your HP ProBook 4410S with a high-capacity, premium battery from Dear IT Solution and enjoy extended laptop usage without interruption. Order now for the best price in Bangladesh!

Review

Write a review

Note: HTML is not translated!
Bad Good
Critial Path: Hello world!
Hello world!
/** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};